home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / usr / share / cli-common / gac-remove < prev   
Encoding:
Text File  |  2006-04-04  |  335 b   |  17 lines

  1. #!/bin/bash
  2.  
  3. if [ ! -x /usr/share/cli-common/runtimes.d/$1 ]; then
  4.     echo ! Cannot remove GAC $1
  5.     exit 1
  6. fi
  7.  
  8. echo "* Removing packages from $1"
  9.  
  10. for file in /usr/share/cli-common/packages.d/*.installcligac
  11. do
  12.   if [ -f $file ]; then
  13.       /usr/share/cli-common/runtimes.d/$1 remove \
  14.       $(basename $file .installcligac)
  15.   fi
  16. done
  17.